order ordord is one of the following:
deny,allow
In this case, the deny directives are evaluated before the allow directives.
allow,deny
In this case, the allow directives are evaluated before the deny directives.
order deny,allow
<Limit /u/Web> order deny,allow deny from all allow from .ncsa.uiuc.edu </Limit>In the /u/Web directory, the server evaluates the deny directive first. So, everyone is denied. It then evaluates the allow directive, and decides to allow clients from .ncsa.uiuc.edu.
Return to access
configuration overview